home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * set the gauge value for the parse gauge (if your gui does
- * not provide this feature, just return 0)
- *
- * IN: application - pointer to the private application structure
- * value - a number between 0...100
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- void __asm igui_SetParseGauge(register __a0 APTR application,
- register __d0 long value)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- set(((struct Application *) application)->app_ParseGauge, MUIA_Gauge_Current, value);
- }
-